/* Desktop Styles */
@media screen and (min-width: 768px) {
	.super-simple-toplist__offer-card,
	.super-simple-toplist__offer-card *{
		box-sizing:border-box;
		-webkit-box-sizing:border-box;
	}
    /* Safe fallback in case the api is down */
    .safe {
        visibility: hidden;
    }

    .unsafe {
        visibility: hidden;
    }
    /* end of fallback */

    .super-simple-toplist__offer-row.mobile {
        display: none;
    }

    .super-simple-toplist__offers-wrapper {
        max-width: 1200px; /* Adjust this to match the live page container width */
        margin: 0 auto; /* Center the preview */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        font-family: Arial, sans-serif;
    }
    .super-simple-toplist__offers {
        margin-bottom: 10px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .super-simple-toplist__offer-card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: hidden;
        align-items: center;
		line-height: normal;
		margin-bottom: 5px;
        margin-top: 5px;
		font-size: 18px;
		padding:12px;
    }
    .super-simple-toplist__offer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap; /* Ensure no wrapping */
        /* min-height: 115px; */
        height: auto;
    }
    .super-simple-toplist__offer-number,
    .super-simple-toplist__offer-logo-wrapper,
    .super-simple-toplist__offer-body,
    .super-simple-toplist__offer-payments,
    .super-simple-toplist__offer-bonus,
    .super-simple-toplist__offer-cta {
        padding: 0 5px;
    }
    .super-simple-toplist__offer-number {
        font-size: 18px;
        font-weight: bold;
        flex: 0 0 4%; /* Fixed width */
		max-width:4%;
    }
    .super-simple-toplist__offer-logo-wrapper {
        display: flex; /* Make the logo container a flex container */
        align-items: center; /* Center items vertically */
        justify-content: left; /* Center items horizontally, optional */
        flex: 0 0 16%; /* Fixed width */
		max-width:16%;
    }
    .super-simple-toplist__offer-logo-wrapper img {
        max-width: 100%;
        height: auto;
		width: 100%;
        border-radius: 10px;
    }
    .super-simple-toplist__offer-body {
        flex: 0 0 18%;
        max-width: 18%;
        padding-left: 15px;
        padding-right: 10px;
    }
    .super-simple-toplist__offer-title p {
        font-size: 1.0em;
        margin: 0;
        font-weight: bold;
        justify-content: center;
    }
    .super-simple-toplist__offer-facts {
        margin-top: 5px;
    }
    .super-simple-toplist__offer-rating {
        font-size: 1em;
        color: #f39c12;
    }
    .super-simple-toplist__offer-rating-star::before {
        content: '★';
        margin-right: 0;
    }
    .super-simple-toplist__offer-payments {
        flex: 0 0 12%; /* Fixed width */
        max-width: 12%;
        display: flex;
    }
	.super-simple-toplist__offer-payment {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .super-simple-toplist__offer-payments img {
        max-width: 18px;
        margin: 0;
    }
   .super-simple-toplist__offer-bonus {
        text-align: left;
        flex: 0 0 32%;
		max-width:32%;
        /* display: flex; */
    }
    .super-simple-toplist__offer-bonus span {
        display: block;
        font-size: 1.0em;
		font-weight: bold;
        color: #888;
		display: inline;
    }
    .super-simple-toplist__offer-bonus strong {
        justify-content: center;
        margin-top: 0px;
		display:inline;
    }
    .super-simple-toplist__offer-bonus-btn {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: #ccc;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .super-simple-toplist__offer-cta {
        flex: 0 0 18%; /* Fixed width */
		max-width:18%;
        display: flex;
        justify-content: center;
		padding-right:0;
    }
    .super-simple-toplist__offer-cta-btn {
        display: inline-block;
        padding: 12px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        outline: none;
        border: none;
        width: 100%;
        text-align: center;
    }
	.super-simple-toplist__offer-cta-btn:link {
		text-decoration: none;
	}
    .super-simple-toplist__offer-cta-btn:hover {
        opacity: 0.9;
    }
	.super-simple-toplist__offer-logo-wrapper a {
		display: contents;
	}
	.super-simple-toplist__offer-title {
		font-size: 18px;
		font-weight: bold;
		line-height: 22px;
	}
}

@media only screen and (max-width: 991px) and (min-width: 768px){
.super-simple-toplist__offer-title {
	font-size: 16px;
	font-weight: bold;
}

}